type crypto/tls.certificateMsgTLS13

10 uses

	crypto/tls (current package)
		conn.go#L1141: 			m = new(certificateMsgTLS13)
		handshake_client_tls13.go#L646: 	certMsg, ok := msg.(*certificateMsgTLS13)
		handshake_client_tls13.go#L764: 		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
		handshake_client_tls13.go#L780: 	certMsg := new(certificateMsgTLS13)
		handshake_messages.go#L1459: type certificateMsgTLS13 struct {
		handshake_messages.go#L1465: func (m *certificateMsgTLS13) marshal() ([]byte, error) {
		handshake_messages.go#L1521: func (m *certificateMsgTLS13) unmarshal(data []byte) bool {
		handshake_messages.go#L1522: 	*m = certificateMsgTLS13{}
		handshake_server_tls13.go#L862: 	certMsg := new(certificateMsgTLS13)
		handshake_server_tls13.go#L1070: 	certMsg, ok := msg.(*certificateMsgTLS13)